home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / rocketbi.swf / scripts / DefineSprite_419 / frame_2 / DoAction.as
Encoding:
Text File  |  2011-03-26  |  477 b   |  22 lines

  1. n = 1;
  2. while(n <= 5)
  3. {
  4.    if(n >= items.length)
  5.    {
  6.       eval(n)._visible = false;
  7.    }
  8.    else
  9.    {
  10.       eval(n).gotoAndStop(items[n]);
  11.       eval(n).price.price = prices[n];
  12.       eval(n).price.showprice = "$" + prices[n];
  13.       trace("and frame is" + eval(n)._currentframe);
  14.       if(eval(n)._currentframe != eval(0)._currentframe)
  15.       {
  16.          eval(n).tapa._visible = false;
  17.       }
  18.    }
  19.    n++;
  20. }
  21. trace("and frame is" + eval(n)._currentframe);
  22.